NAME
`>> - shift right

SYNTAX
a >> b
or
int `>>(int a, int b)

DESCRIPTION
This operator shift the integer a b steps right. This is equal to dividing a by 2 b times.

KEYWORDS
operators

SEE ALSO
`<<